close

絕對值:

/*
絕對值abs()
*/
#include<stdio.h>
#include<stdlib.h>

int main()
{
	int a=-4;
	printf("%d",abs(a));
	return 0;
}

列出輸入的陣列字元 :

/*
列出輸入的陣列字元 
*/
#include<stdio.h>
#include<string.h>

int main()
{
	char s[20],i;
	while(scanf("%s",s)!=EOF)
	{
		for(i=0;i<strlen(s);i++)
			printf("%c ",s[i]);
		printf("\n");
	}
	return 0;
}

 scanf 輸入空白鍵:

/*
scanf 輸入空白鍵 [^\n]
*/
#include <stdio.h>

int main (void)
{
  char s[20];
  scanf ("%[^\n]", s);
  printf ("%s", s);
  return 0;
}

 

 

#include<stdio.h>

typedef enum
{
	A=1,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z
}ABC;

int main()
{
	ABC num; //num是ABC型態的變數 
	while(scanf("%d",&num)!=EOF)
	{
		switch(num)
		{
			case 1:
				printf("A\n");
				break;
			case 2:
				printf("B\n");
				break;
			//1代表為A,2代表B,下面case以此類推 
		}
	}
	return 0;
}

 

 

 

arrow
arrow
    文章標籤
    C
    全站熱搜
    創作者介紹
    創作者 東勢厝滴yang 的頭像
    東勢厝滴yang

    東勢厝yang 雜七雜八亂亂記

    東勢厝滴yang 發表在 痞客邦 留言(0) 人氣()