Skip to content

Instantly share code, notes, and snippets.

@johnhmj
Created October 25, 2010 15:58
Show Gist options
  • Save johnhmj/645191 to your computer and use it in GitHub Desktop.
Save johnhmj/645191 to your computer and use it in GitHub Desktop.
#include<stdio.h>
void ThisIsFunction(int number);
int main(void)
{
int num;
printf("請輸入一個整數");
scanf("%d",&num);
ThisIsFunction(num);
return 0;
}
void ThisIsFunction(int number)
{
if ( number < 0 )
printf("%d\n", -number);
else
printf("%d\n", number);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment