2020年2月5日 星期三

if( express )

#include <stdio.h> // int printf( const char*, ... )
#include <stdlib.h>
int main(int argc, char *argv[])
{
  int score;

  printf( "input a num: " );
  scanf( "%d" , &score );

  // 判斷(印出 score) 及格  T 印出 恭喜你 , >=60   F 印出 你完了 , < 60

  if( ( printf( "score=%d\r\n",score ), score>=60 && score<=100) )
  {
     printf( "恭喜你 \r\n" );
     printf( ">=60\r\n" );
  }
  else
    ( printf( "你完了 \r\n" ) , printf( "< 60\r\n" ) ) ;

  /*{
     printf( "你完了 \r\n" );
     printf( "< 60\r\n" );
  } */


  system( "PAUSE" );
  return 0;
}
/*
  if( express )
    statement_true
   else
    statement_flase
*/

沒有留言:

張貼留言

algorithm

 #include <iostream> #include <string.h> using namespace std; int main(int argc, char** argv)  { for(int j=2;j<=100;j++)//j...