//scilab 5.4.1 clear; clc; printf("\t\t\tProblem Number 1.3\n\n\n"); // Chapter 1: Fundamental Concepts // Problem 1.3 (page no. 20) // Solution //Given M=5; //Unit:kg //mass of body; g=9.81; //Unit:m/s^2 //the local acceleration of gravity W=M*g; //W=the weight of the body //Unit:Newton // 1 N= 1 kg*m/s^2 printf("The weight of the body is %f N",W);