1

如何在 pep/8 中编写这个 c 代码任何人都可以帮助我是新手

#include
using namespace std;
int main(){
int number;
cin>>number;
if(number%2 == 0 ){
cout<<"Even\n"; }
else{ 
cout<<"Odd\n"; }
return 0 ;
}

并提前感谢:)

4

1 回答 1

1

不需要我自己解决它是代码:

 BR main
   num: .EQUATE 0 
   main: SUBSP 2,i 
   DECI num,s 
   if: LDA num,s 
   ANDA 0x0001,i
   BRNE else
   STRO even_msg,d 
   BR endIf
   else: STRO odd_msg,d 
   endIf: ADDSP 2,i 
   STOP
   odd_msg: .ASCII "The number is: Odd\x00"
   even_msg: .ASCII "The number is: Even\x00"
   .END
于 2017-07-27T06:08:10.180 回答