提交為什么失敗
#include int?main()?{??? ?int?x?=?10;??? ?int?y?=?10;??? ??//使用簡單賦值語句實(shí)現(xiàn)x乘以2。 ??x?*=?2;??? ??//使用復(fù)合賦值語句實(shí)現(xiàn)y乘以2。?? ??y?*=?2;??? ??printf("x=%d\n",?x);? ??printf("y=%d\n",?y);?? ??return?0; ?}
?有問題嗎?
#include int?main()?{??? ?int?x?=?10;??? ?int?y?=?10;??? ??//使用簡單賦值語句實(shí)現(xiàn)x乘以2。 ??x?*=?2;??? ??//使用復(fù)合賦值語句實(shí)現(xiàn)y乘以2。?? ??y?*=?2;??? ??printf("x=%d\n",?x);? ??printf("y=%d\n",?y);?? ??return?0; ?}
?有問題嗎?
2015-07-05
舉報(bào)
2015-07-26
x的值要用簡單賦值語句實(shí)現(xiàn)
2015-07-05
#include <stdio.h>
這個(gè)問題?